home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxclpage.h < prev    next >
C/C++ Source or Header  |  1997-03-26  |  2KB  |  54 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxclpage.h */
  20. /* Command list page object definitions */
  21. /* Requires gdevprn.h, gxclist.h */
  22.  
  23. #include "gxclio.h"
  24.  
  25. /* ---------------- Procedures ---------------- */
  26.  
  27. /*
  28.  * Package up the current page in a banding device as a page object.
  29.  * The client must provide storage for the page object.
  30.  * The client may retain the object in memory, or may write it on a file
  31.  * for later retrieval; in the latter case, the client should free the
  32.  * in-memory structure.
  33.  */
  34. int gdev_prn_save_page(P3(gx_device_printer *pdev, gx_saved_page *page,
  35.               int num_copies));
  36.  
  37. /*
  38.  * Render an array of saved pages by setting up a modified get_bits
  39.  * procedure and then calling the device's normal output_page procedure.
  40.  * Any current page in the device's buffers is lost.
  41.  * The (0,0) point of each saved page is translated to the corresponding
  42.  * specified offset on the combined page.  (Currently the Y offset must be 0.)
  43.  * The client is responsible for freeing the saved and placed pages.
  44.  *
  45.  * Note that the device instance for rendering need not be, and normally is
  46.  * not, the same as the device from which the pages were saved, but it must
  47.  * be an instance of the same device.  The client is responsible for
  48.  * ensuring that the rendering device's buffer size (BufferSpace value) is
  49.  * the same as the BandBufferSpace value of all the saved pages, and that
  50.  * the device width is the same as the BandWidth value of the saved pages.
  51.  */
  52. int gdev_prn_render_pages(P3(gx_device_printer *pdev,
  53.                  const gx_placed_page *ppages, int count));
  54.